home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / COMPNENT / CCS32 / CSFPCODE.PAS < prev    next >
Pascal/Delphi Source File  |  1996-06-24  |  570b  |  34 lines

  1. unit CSFPCode;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls;
  8.  
  9. type
  10.   TCodeForm = class(TForm)
  11.     ComboBox1: TComboBox;
  12.     ComboBox2: TComboBox;
  13.     ComboBox3: TComboBox;
  14.     ComboBox4: TComboBox;
  15.     ComboBox5: TComboBox;
  16.     ComboBox6: TComboBox;
  17.     ComboBox7: TComboBox;
  18.     ComboBox8: TComboBox;
  19.     Label1: TLabel;
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25.  
  26. var
  27.   CodeForm: TCodeForm;
  28.  
  29. implementation
  30.  
  31. {$R *.DFM}
  32.  
  33. end.
  34.